wok rev 17808
Add mate-control-center (thanks bellard for the fixes)
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Sat Mar 21 04:55:05 2015 -0300 (2015-03-21) |
parents | 46b7208a0fbd |
children | e47d84d4acac |
files | mate-control-center-dev/receipt mate-control-center/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mate-control-center-dev/receipt Sat Mar 21 04:55:05 2015 -0300 1.3 @@ -0,0 +1,20 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="mate-control-center-dev" 1.7 +VERSION="1.9.0" 1.8 +CATEGORY="development" 1.9 +LICENSE="GPL3" 1.10 +SHORT_DESC="The control center for MATE Desktop, devel files." 1.11 +MAINTAINER="yuripourre@gmail.com" 1.12 +WANTED="mate-control-center" 1.13 + 1.14 +DEPENDS="mate-control-center" 1.15 + 1.16 +genpkg_rules() 1.17 +{ 1.18 + mkdir -p $fs/usr/lib $fs/usr/include 1.19 + cp -a $install/usr/lib/*.la $fs/usr/lib 1.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.21 + cp -a $install/usr/lib/window-manager-settings/*.la $fs/usr/lib 1.22 + cp -a $install/usr/include/* $fs/usr/include 1.23 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/mate-control-center/receipt Sat Mar 21 04:55:05 2015 -0300 2.3 @@ -0,0 +1,44 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="mate-control-center" 2.7 +VERSION="1.9.0" 2.8 +CATEGORY="utilities" 2.9 +LICENSE="GPL3" 2.10 +SHORT_DESC="The control center for MATE Desktop." 2.11 +MAINTAINER="yuripourre@gmail.com" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WEB_SITE="http://www.mate-desktop.org/" 2.14 +WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL" 2.15 + 2.16 +DEPENDS="gtk+ caja desktop-file-utils libxklavier libgtop xorg-libICE xorg-libSM \ 2.17 +xorg-libXt startup-notification gsettings-desktop-schemas mate-settings-daemon" 2.18 +BUILD_DEPENDS="wget gtk+-dev autoconf automake libtool itstool libunique-dev \ 2.19 +dconf-dev mate-common-dev mate-desktop-dev mate-menus-dev mate-settings-daemon-dev \ 2.20 +libxklavier-dev libmatekbd-dev marco-dev libgtop-dev librsvg-dev dbus-glib-dev \ 2.21 +yelp-tools xorg-libXss-dev xorg-libXt-dev startup-notification-dev \ 2.22 +util-linux-uuid-dev libcanberra-dev" 2.23 + 2.24 +# Rules to configure and make the package. 2.25 +compile_rules() 2.26 +{ 2.27 + ./autogen.sh \ 2.28 + --prefix=/usr \ 2.29 + --sysconfdir=/etc \ 2.30 + --localstatedir=/var \ 2.31 + --disable-static \ 2.32 + $CONFIGURE_ARGS && 2.33 + make && 2.34 + make DESTDIR=$DESTDIR install 2.35 +} 2.36 + 2.37 +genpkg_rules() 2.38 +{ 2.39 + mkdir -p $fs/usr/lib $fs/usr/libexec 2.40 + cp -a $install/etc $fs 2.41 + cp -a $install/usr/bin $fs/usr 2.42 + cp -a $install/usr/sbin $fs/usr 2.43 + cp -a $install/usr/share $fs/usr 2.44 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.45 + cp -a $install/usr/lib/window-manager-settings/*.so* $fs/usr/lib/window-manager-settings 2.46 + cp -a $install/usr/libexec $fs/usr 2.47 +}