2017-01-08 21:36:21 +00:00
|
|
|
# Maintainer: Chrysostomus @forum.manjaro.org
|
2017-02-17 22:30:55 +00:00
|
|
|
# Maintainer: Bernhard Landauer <oberon@manjaro.org>
|
2017-01-08 21:36:21 +00:00
|
|
|
|
|
|
|
pkgname=manjaro-architect
|
2017-02-18 00:12:27 +00:00
|
|
|
pkgver=0.7.4.r42.g79967a2
|
2017-02-11 11:36:41 +00:00
|
|
|
pkgrel=1
|
2017-02-17 22:30:55 +00:00
|
|
|
pkgdesc="Manjaro CLI net-installer, forked from the Archlinux Architect"
|
2017-01-08 21:36:21 +00:00
|
|
|
arch=(any)
|
2017-02-18 00:12:27 +00:00
|
|
|
url="https://github.com/Chrysostomus/$pkgname"
|
2017-01-08 21:36:21 +00:00
|
|
|
license=(GPL2)
|
2017-02-10 14:59:41 +00:00
|
|
|
depends=('bash'
|
2017-02-17 22:53:04 +00:00
|
|
|
'dialog'
|
|
|
|
'f2fs-tools'
|
|
|
|
'gptfdisk'
|
|
|
|
'manjaro-tools-base'
|
|
|
|
'mhwd'
|
|
|
|
'nilfs-utils'
|
|
|
|
'pacman'
|
|
|
|
'pacman-mirrorlist'
|
|
|
|
'parted')
|
2017-01-08 21:36:21 +00:00
|
|
|
makedepends=('git')
|
2017-02-18 00:12:27 +00:00
|
|
|
source=("git+$url.git")
|
2017-01-08 21:36:21 +00:00
|
|
|
md5sums=('SKIP')
|
2017-02-10 14:59:41 +00:00
|
|
|
|
2017-02-11 11:36:41 +00:00
|
|
|
pkgver() {
|
2017-02-18 00:12:27 +00:00
|
|
|
cd $pkgname
|
2017-02-11 11:36:41 +00:00
|
|
|
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
|
|
|
|
}
|
|
|
|
|
2017-02-17 22:30:55 +00:00
|
|
|
build() {
|
2017-02-18 00:12:27 +00:00
|
|
|
cd $pkgname
|
2017-02-17 22:30:55 +00:00
|
|
|
make PREFIX=/usr
|
|
|
|
}
|
2017-02-13 18:53:24 +00:00
|
|
|
|
2017-02-17 22:30:55 +00:00
|
|
|
package() {
|
2017-02-18 00:12:27 +00:00
|
|
|
cd $pkgname
|
2017-02-17 22:30:55 +00:00
|
|
|
make PREFIX=/usr DESTDIR=${pkgdir} install
|
2017-01-08 21:36:21 +00:00
|
|
|
}
|