wok-next annotate pcmanfm/receipt @ rev 21112
retawq: enable HTTPS support
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Jan 12 13:31:42 2019 +0200 (2019-01-12) |
parents | 7c5d038be95b |
children |
rev | line source |
---|---|
al@19812 | 1 # SliTaz package receipt v2. |
pankso@255 | 2 |
pascal@13351 | 3 PACKAGE="pcmanfm" |
al@21085 | 4 VERSION="1.3.1" |
pankso@255 | 5 CATEGORY="system-tools" |
al@19812 | 6 SHORT_DESC="Light and easy to use file manager" |
al@21020 | 7 MAINTAINER="devel@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
al@19893 | 9 WEB_SITE="https://wiki.lxde.org/en/PCManFM" |
al@21017 | 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/lxde/pcmanfm.html" |
al@19812 | 11 |
pankso@16276 | 12 TARBALL="$PACKAGE-$VERSION.tar.xz" |
psychomaniak@18130 | 13 WGET_URL="http://git.lxde.org/gitweb/?p=lxde/pcmanfm.git;a=snapshot;h=$VERSION;sf=txz" |
al@21085 | 14 TARBALL_SHA1="09d70c8297f373e49f94494136b73f9c0bce8fbb" |
pankso@12544 | 15 |
al@21078 | 16 BUILD_DEPENDS="intltool libx11-dev pango-dev libfm-dev gtk2-dev automake" |
al@21105 | 17 DEPENDS="atk libcairo gdk-pixbuf glib gtk2 libfm libfm-gtk libx11 pango" |
al@21085 | 18 |
al@21085 | 19 SUGGESTED="gvfs" |
al@21085 | 20 TAGS="file-manager" |
pankso@255 | 21 |
al@20443 | 22 compile_rules() { |
al@19813 | 23 # tarball from git.lxde.org requires this step |
al@21085 | 24 ./autogen.sh |
al@19813 | 25 |
al@20534 | 26 ./configure $CONFIGURE_ARGS && |
al@20534 | 27 make && |
al@20534 | 28 make install || return 1 |
al@19317 | 29 |
al@19812 | 30 # default settings |
al@21085 | 31 install -Dm644 $stuff/pcmanfm.conf $install/etc/xdg/pcmanfm/default/pcmanfm.conf |
al@21085 | 32 |
al@19812 | 33 # XDG autostart desktop file (lxsession will use it automatically) |
al@20443 | 34 cp -r $stuff/autostart/ $install/etc/xdg/ |
al@19812 | 35 # add custom actions |
al@20443 | 36 mkdir -p $install/usr/share/file-manager |
al@20443 | 37 cp -r $stuff/actions/ $install/usr/share/file-manager |
al@19812 | 38 install -m755 $stuff/gvfs-mount-archive.sh $install/usr/bin |
al@19863 | 39 |
al@19863 | 40 # avoid warning about missed modules dir |
al@19863 | 41 mkdir -p $install/usr/lib/pcmanfm |
pankso@255 | 42 } |