wok-next view xorg-xf86-video-neomagic/receipt @ rev 20495

make-slitaz-icons: fix previous commit
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 14 03:16:12 2018 +0200 (2018-03-14)
parents eb8067417980
children 757d032c55c7
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xf86-video-neomagic"
4 VERSION="1.2.9"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg driver for the Neomagic graphics chipsets found in many \
7 laptop computers"
8 MAINTAINER="domcox@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://www.x.org/wiki/neomagic/"
12 TARBALL="xf86-video-neomagic-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 BUILD_DEPENDS="xorg-server-dev xorg-xf86dgaproto"
16 SPLIT="xorg-xf86-video-neomagic-dev"
17 PKG_RULE="std-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 case $PACKAGE in
34 *-neomagic)
35 copy @std
36 DEPENDS="xorg-server"
37 TAGS="xorg display"
38 ;;
39 *-dev)
40 copy @dev
41 DEPENDS="xorg-xf86-video-neomagic xorg-server-dev"
42 ;;
43 esac
44 }