blob: 9a0f435000b59cb79610b19119fa0e9119d37567 (
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
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=pcmanfm
pkgver=1.2.5
pkgrel=2
pkgdesc="Extremely fast and lightweight file manager"
arch="all"
url="https://wiki.lxde.org/en/PCManFM"
license="GPL-2.0+"
makedepends="gtk+2.0-dev libfm-dev intltool"
subpackages="$pkgname-doc $pkgname-lang"
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz
CVE-2017-8934.patch"
# secfixes:
# 1.2.5-r1:
# - CVE-2017-8934
build() {
cd "$builddir"
./configure \
--sysconfdir=/etc \
--prefix=/usr
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
sed -i 's|x-directory/normal|inode/directory|' \
"$pkgdir"/usr/share/applications/pcmanfm.desktop
}
sha512sums="ce53315483f58361c5a7797bdca355dbbedc2cf3907d319c7c65be844ea74ed297497dc3183c903e06b8294f6301d19347f6b9871e34bf773c04ff4fb8ab32f3 pcmanfm-1.2.5.tar.xz
31c669e61832c1144dac7ef619b8dcdef7ee43f3f40e874695bef6aecc81d53caabb66913ea96ed5c2f5d79ac9bb5379ef317d9428bef837013c18d24da7536e CVE-2017-8934.patch"
|