forked from Daenyth/pkgtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
25 lines (22 loc) · 793 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
# Maintainer: Daenyth <Daenyth+Arch AT gmail DOT com>
# Contributor: Daenyth <Daenyth+Arch AT gmail DOT com>
pkgname=pkgtools
pkgver=22
pkgrel=1
pkgdesc="A collection of scripts for Arch Linux packages"
arch=('i686' 'x86_64')
url="http://bbs.archlinux.org/viewtopic.php?pid=384196"
license=('GPL')
source=(v$pkgver::http://github.com/Daenyth/pkgtools/tarball/v$pkgver)
backup=('etc/pkgtools/newpkg.conf' 'etc/pkgtools/pkgfile.conf' 'etc/pkgtools/spec2arch.conf')
install=pkgtools.install
provides=(newpkg pkgfile)
depends=('bash>=4' 'python2' 'pcre' 'libarchive' 'python' 'python-yaml')
optdepends=('cron: For pkgfile --update entry')
md5sums=('37430c4fa13b4cf4afb233100706f5ae')
build() {
cd "$srcdir/Daenyth-$pkgname"-*
make
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et: