summaryrefslogtreecommitdiff
path: root/community/stow
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-12-06 23:14:44 +0000
committerroot <root@rshg054.dnsready.net>2011-12-06 23:14:44 +0000
commitd1d87d2ac643e3dabc251f3cec7d3b00e29b282c (patch)
tree09d9025934fe06bd25753f98cf2eab3140456cc3 /community/stow
parent55d1e19e71b453a0f47c599f281a2ad2644247d2 (diff)
Tue Dec 6 23:14:44 UTC 2011
Diffstat (limited to 'community/stow')
-rw-r--r--community/stow/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/stow/PKGBUILD b/community/stow/PKGBUILD
new file mode 100644
index 000000000..c362a08d0
--- /dev/null
+++ b/community/stow/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+# Contributor: eric <eric@archlinux.org>
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+# Contributor: Chris Brannon <cmbrannon79@gmail.com>
+
+pkgname=stow
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='GNU Stow is a program for managing the installation of software packages'
+url='http://www.gnu.org/software/stow/'
+arch=('i686' 'x86_64')
+source=("ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz")
+license=('GPL2')
+md5sums=('5526fdb8c76d0aee35eb304d7f55d2f6')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 ft=sh et: