wok view pnmixer/receipt @ rev 22802

freetype: add freetype-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 28 09:23:39 2020 +0100 (2020-01-28)
parents 2b9f96603415
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="pnmixer"
4 VERSION="0.7.2"
5 CATEGORY="utilities"
6 SHORT_DESC="System tray sound mixer."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/nicklan/pnmixer/wiki"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/nicklan/$PACKAGE/archive/v$VERSION/$TARBALL"
14 DEPENDS="alsa-lib atk bzlib cairo expat fontconfig freetype gcc-lib-base \
15 gdk-pixbuf glib glibc-base gtk+3 libffi libgio libnotify libpng \
16 libxcb pango pixman xorg-libX11 xorg-libXau xorg-libXcomposite \
17 xorg-libXcursor xorg-libXdamage xorg-libXdmcp xorg-libXext \
18 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender zlib"
19 BUILD_DEPENDS="alsa-lib-dev cmake gettext glib-dev gtk+3-dev libnotify-dev \
20 xorg-libX11-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 cp $stuff/LINGUAS po/LINGUAS
27 mkdir build
28 cd build
29 cmake .. \
30 -DCMAKE_INSTALL_PREFIX=/usr &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cp -a $install/* $fs
39 }