rev |
line source |
rcx@3142
|
1 # SliTaz package receipt.
|
rcx@3142
|
2
|
rcx@3142
|
3 PACKAGE="xorg-cf-files"
|
gokhlayeh@6993
|
4 VERSION="1.0.3"
|
rcx@3142
|
5 CATEGORY="development"
|
rcx@3142
|
6 SHORT_DESC="Conf files used by xorg and imake."
|
rcx@3142
|
7 MAINTAINER="rcx@zoominternet.net"
|
rcx@3142
|
8 DEPENDS=""
|
gokhlayeh@6993
|
9 BUILD_DEPENDS=""
|
rcx@3142
|
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
|
rcx@3142
|
11 WEB_SITE="http://www.x.org/"
|
rcx@3142
|
12 WGET_URL="$XORG_MIRROR/util/$TARBALL"
|
rcx@3142
|
13
|
rcx@3142
|
14 # Rules to configure and make the package.
|
rcx@3142
|
15 compile_rules()
|
rcx@3142
|
16 {
|
rcx@3142
|
17 cd $src
|
rcx@3142
|
18 ./configure \
|
rcx@3142
|
19 --prefix=/usr \
|
rcx@3142
|
20 --infodir=/usr/share/info \
|
rcx@3142
|
21 --mandir=/usr/share/man \
|
rcx@3142
|
22 $CONFIGURE_ARGS &&
|
rcx@3142
|
23 make && make DESTDIR=$PWD/_pkg install
|
rcx@3142
|
24 }
|
rcx@3142
|
25
|
rcx@3142
|
26 # Rules to gen a SliTaz package suitable for Tazpkg.
|
rcx@3142
|
27 genpkg_rules()
|
rcx@3142
|
28 {
|
rcx@3142
|
29 mkdir -p $fs/usr
|
rcx@3142
|
30 cp -a $_pkg/usr/lib $fs/usr
|
rcx@3142
|
31 }
|
rcx@3142
|
32
|