wok-next view extended-actions/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 65f5c0b7dcd4
children
line source
1 # SliTaz package receipt.
3 PACKAGE="extended-actions"
4 VERSION="0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Service for generating extended actions on files"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://launchpad.net/extended-actions"
11 BRANCH="5"
12 TARBALL="$PACKAGE-$BRANCH.tar.bz2"
13 WGET_URL="bzr|lp:extended-actions"
15 BUILD_DEPENDS="bzr cmake vala glib-dev libgee-dev"
17 TODO="Setup extended-actions specific to SliTaz"
19 compile_rules() {
20 # gee-1.0 is old while gee-0.8 is latest ;-)
21 sed -i 's|gee-1.0|gee-0.8|g' $(grep -l gee-1.0 $(find . -type f))
23 mkdir build
24 cd build
25 cmake \
26 -DCMAKE_INSTALL_PREFIX=/usr \
27 .. &&
28 make &&
29 make DESTDIR=$install install
30 }
32 genpkg_rules() {
33 cp -a $install/* $fs
34 DEPENDS="libgee glib"
35 }