summaryrefslogtreecommitdiff
path: root/community/pkgtools/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/pkgtools/PKGBUILD')
-rw-r--r--community/pkgtools/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/pkgtools/PKGBUILD b/community/pkgtools/PKGBUILD
new file mode 100644
index 000000000..9328188ea
--- /dev/null
+++ b/community/pkgtools/PKGBUILD
@@ -0,0 +1,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=(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')
+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: