Added arc and perl-file-libmagic

This commit is contained in:
moparisthebest
2016-11-05 22:06:28 -04:00
parent 87c8eff605
commit e792135aad
5 changed files with 94 additions and 0 deletions

13
src/arc/.SRCINFO Normal file
View File

@@ -0,0 +1,13 @@
pkgbase = arc
pkgdesc = Arc file archiver and compressor. Long since superceeded by zip/unzip but useful if have old .arc files need to unpack.
pkgver = 5.21p
pkgrel = 3
url = http://sourceforge.net/projects/arc
arch = i686
arch = x86_64
license = GPL
source = http://download.sourceforge.net/arc/arc-5.21p.tar.gz
sha1sums = e68e358b86a67c68e8a1cb95a840f380bfda3684
pkgname = arc

4
src/arc/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
*
!.gitignore
!.SRCINFO
!PKGBUILD

21
src/arc/PKGBUILD Normal file
View File

@@ -0,0 +1,21 @@
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
# Contributor: Diogo Leal <estranho@diogoleal.com>
pkgname=arc
pkgver=5.21p
pkgrel=3
pkgdesc="Arc file archiver and compressor. Long since superceeded by zip/unzip but useful if have old .arc files need to unpack."
arch=('i686' 'x86_64')
url='http://sourceforge.net/projects/arc'
license=('GPL')
source=("http://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha1sums=('e68e358b86a67c68e8a1cb95a840f380bfda3684')
build() {
make -C "${pkgname}-${pkgver}"
}
package() {
make -C "${pkgname}-${pkgver}" PREFIX=/usr DESTDIR="${pkgdir}" install
}