diff options
author | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
commit | 48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch) | |
tree | 00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/pcmanfm/pcmanfm.xibuild | |
parent | 871b2b573f01c1b3176a0f65458b3d281b41c437 (diff) |
removed idea of repos
Diffstat (limited to 'repo/pcmanfm/pcmanfm.xibuild')
-rw-r--r-- | repo/pcmanfm/pcmanfm.xibuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/repo/pcmanfm/pcmanfm.xibuild b/repo/pcmanfm/pcmanfm.xibuild new file mode 100644 index 0000000..35c3d52 --- /dev/null +++ b/repo/pcmanfm/pcmanfm.xibuild @@ -0,0 +1,33 @@ +#!/bin/sh + +NAME="pcmanfm" +DESC="Extremely fast and lightweight file manager" + +MAKEDEPS="make " +DEPS="gtk3 libfm " + +PKG_VER=1.3.2 +SOURCE="https://downloads.sourceforge.net/pcmanfm/pcmanfm-$PKG_VER.tar.xz" + +prepare () { + # avoid errors building .po files with gettext-tiny + sed -e "s/^\(SUBDIRS =.*\)po\(.*\)$/\1\2/" -i Makefile.in + echo "SUBDIRS=src data" > Makefile.am + aclocal + autoreconf + automake --add-missing +} + +build () { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --with-gtk=3 + make +} + +package () { + make DESTDIR=$PKG_DEST install + sed -i 's|x-directory/normal|inode/directory|' \ + "$PKG_DEST"/usr/share/applications/pcmanfm.desktop +} |