summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cc23655a33f73ba7d2f973f7d35729ca89e2c438 (plain)
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
34
# prokit can install a ProteanOS system, run a ProteanOS shell and other
# commands, manage software packages in an installed ProteanOS system, and
# build packages for ProteanOS (with build dependencies automatically
# installed and removed).
#
# prokit is similar in function to the debootstrap, pbuilder, and sbuild
# programs of Debian and derivatives.

# First Linux Arch packager: Serge Victor <arch@random.re>


pkgname=prokit
pkgver=1.1.0
pkgrel=1
pkgdesc="The ProteanOS Development Kit"
arch=('any')
url="http://proteanos.com/dev/prokit/"
license=('GPL3')
depends=('bash')
source=('http://files.proteanos.com/pub/prokit/1.1.0/prokit-1.1.0.tar.bz2')
md5sums=('afbe178da9a6e8431e45d18b97b801c6')

build() {
    cd "$srcdir/$pkgname-$pkgver"
    ./autogen.sh
    ./configure --prefix=/usr
}

package() {
    cd "$srcdir/$pkgname-$pkgver"
    make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: