wok annotate xorg-xf86-video-radeonhd/receipt @ rev 19367
Up tazlito (428), links (2.13)
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Thu Aug 04 19:53:20 2016 +0200 (2016-08-04) |
parents | bf4417b54ba9 |
children | 814c58f64f83 |
rev | line source |
---|---|
pascal@11203 | 1 # SliTaz package receipt. |
pascal@11203 | 2 |
pascal@11203 | 3 PACKAGE="xorg-xf86-video-radeonhd" |
pascal@11203 | 4 VERSION="1.3.0" |
pascal@11203 | 5 CATEGORY="x-window" |
pascal@11203 | 6 SHORT_DESC="Xorg server ATI Radeon HD driver." |
pascal@11203 | 7 MAINTAINER="lufeng369@slitaz.org" |
pascal@15579 | 8 LICENSE="MIT" |
pascal@11203 | 9 SOURCE="xf86-video-radeonhd" |
pascal@11203 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@11203 | 11 WEB_SITE="http://www.x.org/" |
pascal@11203 | 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pascal@11203 | 13 |
pascal@15579 | 14 DEPENDS="xorg xorg-server" |
pascal@15579 | 15 BUILD_DEPENDS="xorg-server-dev xorg-libpciaccess-dev xorg-xproto xorg-fontsproto" |
pascal@15579 | 16 |
pascal@11203 | 17 # Rules to configure and make the package. |
pascal@11203 | 18 compile_rules() |
pascal@11203 | 19 { |
pascal@11203 | 20 cd $src |
pascal@11203 | 21 ./configure \ |
pascal@11203 | 22 --prefix=/usr \ |
pascal@11203 | 23 --sysconfdir=/etc \ |
pascal@11203 | 24 --mandir=/usr/share/man \ |
pascal@11203 | 25 --localstatedir=/var \ |
pascal@11203 | 26 --with-xorg-module-dir=/usr/lib/X11/modules \ |
pascal@11203 | 27 $CONFIGURE_ARGS && |
pascal@11203 | 28 make && |
pascal@15579 | 29 make DESTDIR=$DESTDIR install |
pascal@11203 | 30 } |
pascal@11203 | 31 |
pascal@11203 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11203 | 33 genpkg_rules() |
pascal@11203 | 34 { |
pascal@11203 | 35 mkdir -p $fs/usr/lib/X11/modules/drivers/ |
pascal@15579 | 36 cp -a $install/usr/lib/X11/modules/drivers/*.so \ |
pascal@11203 | 37 $fs/usr/lib/X11/modules/drivers/ |
pascal@11203 | 38 } |