mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
53 lines
1.5 KiB
Bash
53 lines
1.5 KiB
Bash
# $Id$
|
|
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
|
|
# Contributor: Gaetan Bisson <bisson@archlinux.org>
|
|
# Contributor: Thayer Williams <thayer@archlinux.org>
|
|
# Contributor: Hugo Doria <hugo@archlinux.org>
|
|
# Contributor: TuxSpirit<tuxspirit@archlinux.fr> 2007/11/17 21:22:36 UTC
|
|
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - use makefile.linux_any_cpu
|
|
|
|
pkgname=p7zip
|
|
pkgver=9.38.1
|
|
pkgrel=3
|
|
pkgdesc="Command-line file archiver with high compression ratio"
|
|
arch=('i686' 'x86_64')
|
|
url="http://p7zip.sourceforge.net/"
|
|
license=('LGPL' 'custom:unRAR')
|
|
depends=('gcc-libs' 'sh')
|
|
makedepends_i686=('nasm')
|
|
makedepends_x86_64=('yasm')
|
|
install=$pkgname.install
|
|
source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}_${pkgver}_src_all.tar.bz2)
|
|
sha256sums=('fd5019109c9a1bf34ad3257d37a6853eae8151ff50345f0a3ffba7d8c5fdb995')
|
|
|
|
prepare() {
|
|
cd "$srcdir/${pkgname}_$pkgver"
|
|
|
|
cp makefile.linux_any_cpu_gcc_4.X makefile.machine
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/${pkgname}_$pkgver"
|
|
make all3 OPTFLAGS="$CFLAGS"
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/${pkgname}_$pkgver"
|
|
|
|
make install \
|
|
DEST_DIR="$pkgdir" \
|
|
DEST_HOME=/usr \
|
|
DEST_MAN=/usr/share/man
|
|
|
|
install -d "${pkgdir}"/usr/share/licenses/p7zip
|
|
ln -s -t "$pkgdir/usr/share/licenses/p7zip/" \
|
|
/usr/share/doc/p7zip/DOC/License.txt \
|
|
/usr/share/doc/p7zip/DOC/unRarLicense.txt
|
|
|
|
chmod -R a+r,u+w,a+X "$pkgdir/usr"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|