wok-4.x view easytag/receipt @ rev 7666
Moved Module.sysvers to Module.sysvers-modules. This is cause i think making linux-without-modules bzImage is was change that file. Removed /usr/src/linux in pre_remove function in linux-module-headers. Added /usr/src/linux soft link to post_install in linux-module-headers.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Dec 16 12:59:54 2010 +0000 (2010-12-16) |
parents | 6e90579538d6 |
children | 382001ab73aa |
line source
1 # SliTaz package receipt.
3 PACKAGE="easytag"
4 VERSION="2.1.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Utility for viewing and editing tags on sound files."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ id3lib flac libvorbis xorg-libXdamage gcc-lib-base"
9 BUILD_DEPENDS="gtk+-dev id3lib-dev id3lib expat-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://easytag.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="audio"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
33 }