blob: 31015bd9c75750c13101bf3f20f360f87f721632 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# $Id: PKGBUILD 120827 2014-10-16 15:48:31Z bpiotrowski $
# Maintainer (Arch): Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor (Arch): IgnorantGuru http://igurublog.wordpress.com/contact-ignorantguru/
# Contributor (Arch): ridikulus_rat <the.ridikulus.rat@gmail.com>
# Maintainer: André Silva <emulatorman@parabola.nu>
# Contributor: Edison Ibañez <arkhan.xxx@gmail.com>
pkgname=spacefm
pkgver=0.9.4
pkgrel=3.parabola1
pkgdesc='Multi-panel tabbed file manager, with unar support'
arch=('i686' 'x86_64' 'mips64el')
url='http://ignorantguru.github.com/spacefm/'
license=('GPL3')
install=$pkgname.install
depends=('gtk2' 'shared-mime-info' 'desktop-file-utils' 'startup-notification'
'systemd' 'bash' 'unar')
makedepends=('intltool' 'gettext')
optdepends=('lsof: device processes'
'wget: plugin download'
'gksu: perform as root functionality'
'udevil: mount as non-root user and mount networks'
'udisks: mount as non-root user'
'udisks2: mount as non-root user')
replaces=(${pkgname}-libre)
conflicts=(${pkgname}-libre)
source=(https://github.com/IgnorantGuru/spacefm/archive/$pkgver.tar.gz
spacefm-0.9.4-glib-2.41.patch
libre.patch)
md5sums=('daeee7dcccea33d6258a0a9d783470c4'
'1ec85afcb4fc881a8e876b3cf60c7028'
'30ba2b4b8f5ae7bf1552689b192eab89')
prepare() {
cd $pkgname-$pkgver
# replace nonfree unrar with unar support
patch -Np1 -i $srcdir/libre.patch src/ptk/ptk-file-archiver.c
# fix freezes with glib 2.41
patch -p1 -i ../spacefm-0.9.4-glib-2.41.patch
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr \
--disable-pixmaps
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|