blob: 87162bbf0c960ccf6155901f2f6e0b00b96276bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=thunar-archive-plugin
pkgver=0.2.4
pkgrel=0
pkgdesc="create and deflate archives in thunar"
url="http://xfce-goodies.berlios.de/"
license="GPL2"
depends=
makedepends="gtk+-dev intltool thunar-dev"
install=
source="http://download.berlios.de/xfce-goodies/$pkgname-$pkgver.tar.bz2"
build() {
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/xfce4 \
--localstatedir=/var \
--disable-static
make || return 1
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install || return 1
# dont want file-roller
rm -f "$pkgdir"/usr/lib/xfce4/thunar-archive-plugin/file-roller.tap
}
md5sums="4c389e6328af9322937af76382f0baec thunar-archive-plugin-0.2.4.tar.bz2"
|