summaryrefslogtreecommitdiff
path: root/pcr/stow
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-12-07 00:59:46 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-12-07 00:59:46 -0200
commitbb7b495e86a46b07898bd7957c208f4a6e3e1b27 (patch)
tree7c5cad49d8bc10ef8e35d474639f11aea594ebb3 /pcr/stow
parentbdbc9dfba7a5b080e5780424b99ea8b37ef35710 (diff)
parent317ab819612426664e8873043e084e022a77fbd6 (diff)
downloadabslibre-bb7b495e86a46b07898bd7957c208f4a6e3e1b27.tar.gz
abslibre-bb7b495e86a46b07898bd7957c208f4a6e3e1b27.tar.bz2
abslibre-bb7b495e86a46b07898bd7957c208f4a6e3e1b27.zip
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'pcr/stow')
-rw-r--r--pcr/stow/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/pcr/stow/PKGBUILD b/pcr/stow/PKGBUILD
new file mode 100644
index 000000000..a3024b7e9
--- /dev/null
+++ b/pcr/stow/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
+
+pkgname=stow
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="A program for managing the installation of software packages, keeping them separate while making them appear to be installed in the same place."
+arch=(any)
+url="https://www.gnu.org/software/$pkgname/"
+license=('GPL2')
+depends=('perl>=5.6.1')
+source=(https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}
+
+md5sums=('902564d502975f353d3b0514a21863b1')