summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-05-30 22:04:28 -0600
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-02 01:40:13 -0600
commitd27fff697b1008ed25a1f76082e4d40567138574 (patch)
tree52d1e3b37b25f93d767f2afa2b16f0796d815cbb /libre
parent1e18bf85bedfe5b6fa955a1ecf556ee480710636 (diff)
downloadabslibre-d27fff697b1008ed25a1f76082e4d40567138574.tar.gz
abslibre-d27fff697b1008ed25a1f76082e4d40567138574.tar.bz2
abslibre-d27fff697b1008ed25a1f76082e4d40567138574.zip
add libre/gna-unrar
Diffstat (limited to 'libre')
-rw-r--r--libre/gna-unrar/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/libre/gna-unrar/PKGBUILD b/libre/gna-unrar/PKGBUILD
new file mode 100644
index 000000000..c29b72408
--- /dev/null
+++ b/libre/gna-unrar/PKGBUILD
@@ -0,0 +1,31 @@
+# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
+
+# Note: This is related to unrar-free on AUR. If AUR:unrar-free comes
+# to Parabola, it should be as "gna-unrar-cvs", as the AUR package
+# builds the latest version from CVS (2007; 0.0.1 is from 2004).
+
+_pkgname=unrar
+pkgname=gna-unrar
+pkgver=0.0.1
+url=(http://home.gna.org/unrar/)
+license=(GPL)
+source=(http://download.gna.org/$_pkgname/$_pkgname-$pkgver.tar.gz)
+md5sums=('ac284a6739e3b8c794e7f9e8c20ed8f8')
+
+pkgrel=1
+arch=(i686 x86_64)
+
+provides=(unrar)
+replaces=(unrar)
+conflicts=(unrar)
+
+build() {
+ cd "$srcdir/$_pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$_pkgname-$pkgver"
+ make install DESTDIR="$pkgdir"
+}