2018-09-10 00:42:26 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.freedesktop.org/wiki/Software/desktop-file-utils
|
|
|
|
TERMUX_PKG_DESCRIPTION="Command line utilities for working with desktop entries"
|
2019-01-21 17:50:21 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
2019-05-17 00:18:48 +02:00
|
|
|
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com>"
|
2019-08-20 17:34:24 +02:00
|
|
|
TERMUX_PKG_VERSION=0.24
|
2020-02-24 20:20:50 +01:00
|
|
|
TERMUX_PKG_REVISION=4
|
2018-09-10 00:42:26 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://www.freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-${TERMUX_PKG_VERSION}.tar.xz
|
2019-08-20 17:34:24 +02:00
|
|
|
TERMUX_PKG_SHA256=a1de5da60cbdbe91e5c9c10ac9afee6c3deb019e0cee5fdb9a99dddc245f83d9
|
2018-09-10 00:42:26 +02:00
|
|
|
TERMUX_PKG_DEPENDS="glib"
|
|
|
|
|
|
|
|
termux_step_create_debscripts() {
|
2019-01-21 17:50:21 +01:00
|
|
|
for i in postinst postrm triggers; do
|
|
|
|
sed \
|
|
|
|
"s|@TERMUX_PREFIX@|${TERMUX_PREFIX}|g" \
|
|
|
|
"${TERMUX_PKG_BUILDER_DIR}/hooks/${i}.in" > ./${i}
|
|
|
|
chmod 755 ./${i}
|
|
|
|
done
|
|
|
|
unset i
|
|
|
|
chmod 644 ./triggers
|
2018-09-10 00:42:26 +02:00
|
|
|
}
|