diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-09-06 01:06:20 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-09-06 01:06:20 -0300 |
commit | f9a5846f101608f475c4643550d276eeedf0c4ee (patch) | |
tree | 24e6045d16f85823929f4d40ed8e3f6f5c543dcf /pcr | |
parent | d2c68bcb80a1c18724d749303c6b59e1bab339d3 (diff) | |
download | abslibre-f9a5846f101608f475c4643550d276eeedf0c4ee.tar.gz abslibre-f9a5846f101608f475c4643550d276eeedf0c4ee.tar.bz2 abslibre-f9a5846f101608f475c4643550d276eeedf0c4ee.zip |
mv gna-unrar to [pcr], due it's not support RARv3
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/gna-unrar/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pcr/gna-unrar/PKGBUILD b/pcr/gna-unrar/PKGBUILD new file mode 100644 index 000000000..c29b72408 --- /dev/null +++ b/pcr/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" +} |