mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
27 lines
833 B
Bash
27 lines
833 B
Bash
|
# $Id: PKGBUILD 5740 2008-07-20 16:13:54Z jgc $
|
||
|
# Contributor: David Keogh <davekeogh@shaw.ca>
|
||
|
|
||
|
pkgname=squeeze
|
||
|
pkgver=0.2.3
|
||
|
pkgrel=2
|
||
|
pkgdesc="Squeeze is a modern and advanced archive manager for the Xfce Desktop Environment."
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL2')
|
||
|
url="http://squeeze.xfce.org/"
|
||
|
groups=('xfce4')
|
||
|
depends=('thunar')
|
||
|
makedepends=('pkgconfig' 'tar' 'desktop-file-utils')
|
||
|
options=('!libtool')
|
||
|
conflicts=('squeeze-svn')
|
||
|
install=${pkgname}.install
|
||
|
source=(http://squeeze.xfce.org/downloads/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('bd3cb0648b49be1f146fc4f675606176')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
|
||
|
--localstatedir=/var --disable-static || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=${startdir}/pkg install || return 1
|
||
|
}
|