18 lines
671 B
Bash
18 lines
671 B
Bash
TERMUX_PKG_HOMEPAGE=http://thunar.xfce.org
|
|
TERMUX_PKG_DESCRIPTION="Modern file manager for Xfce"
|
|
TERMUX_PKG_VERSION=1.8.9
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com>"
|
|
TERMUX_PKG_SRCURL=http://archive.xfce.org/src/xfce/thunar/1.8/Thunar-$TERMUX_PKG_VERSION.tar.bz2
|
|
TERMUX_PKG_SHA256=7a758e7ac03501c520c304f8845353315c954d429b17d591b8eea8b14f1350b9
|
|
TERMUX_PKG_DEPENDS="libandroid-shmem, libxfce4ui, libexo, hicolor-icon-theme, libexif, libnotify, libpng"
|
|
|
|
termux_step_create_debscripts () {
|
|
cat > postinst <<HERE
|
|
ln -sf ${TERMUX_PREFIX}/bin/thunar ${TERMUX_PREFIX}/bin/Thunar
|
|
HERE
|
|
chmod 0755 postinst
|
|
}
|
|
|
|
|