-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKGBUILD
33 lines (27 loc) · 947 Bytes
/
PKGBUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Maintainer: Kaare Jenssen <kaare at jenssen dot it>
pkgname='archisogen'
pkgver=0.1.0
pkgrel=1
pkgdesc='Simple program to ease the creation of Arch live ISO files'
arch=('x86_64')
url='https://github.com/0ofta/archisogen.git'
license=('GPL2')
depends=('archiso')
makedepends=('git')
provides=('archisogen')
source=($pkgname::git+https://github.com/0ofta/archisogen)
md5sums=('SKIP')
build() {
cd $pkgname
make
}
package() {
cd $pkgname
install -Dm755 archisogen "$pkgdir"/usr/bin/archisogen
install -d "$pkgdir"/root/archlive/airootfs/root
install -D /usr/share/archiso/configs/releng/packages.* "$pkgdir"/root/archlive/
install -D /usr/share/archiso/configs/releng/pacman.conf "$pkgdir"/root/archlive/
# install -D /usr/share/archiso/configs/releng/airootfs/root/customize_airootfs.sh "$pkgdir"/root/archlive/airootfs/root/
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/archisogen/LICENSE
}
# vim:set ts=2 sw=2 et: