mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
22 lines
782 B
Bash
22 lines
782 B
Bash
# $Id: PKGBUILD 35966 2009-04-19 01:53:36Z eric $
|
|
# Maintainer: dale <dale@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=unarj
|
|
pkgver=2.63a
|
|
pkgrel=2
|
|
pkgdesc="The UNARJ utility is developed for extracting, testing and viewing the contents of archives created with the ARJ archiver"
|
|
arch=(i686 x86_64)
|
|
url="http://www.ibiblio.org/pub/Linux/utils/compress/"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
source=(http://ibiblio.org/pub/Linux/utils/compress/$pkgname-$pkgver.tar.gz LICENSE)
|
|
md5sums=('a83d139c245f911f22cb1b611ec9768f' 'c2467ee8c1cb61d843bc2c16cc5e2a2d')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make || return 1
|
|
install -D -m755 unarj $pkgdir/usr/bin/unarj || return 1
|
|
install -D -m644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|