wok annotate xorg-xf86-input-elographics/receipt @ rev 20926
updated fltk, fltk-blocks, fltk-checkers, fltk-colbrowser, fltk-dev, fltk-editor, and fltk-sudoku (1.3.3 -> 1.3.4.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 02 13:00:42 2019 +0100 (2019-03-02) |
parents | eb8067417980 |
children | d232150a1d6a |
rev | line source |
---|---|
pankso@3080 | 1 # SliTaz package receipt. |
pankso@3080 | 2 |
pankso@3080 | 3 PACKAGE="xorg-xf86-input-elographics" |
pascal@15161 | 4 VERSION="1.4.1" |
pankso@3080 | 5 CATEGORY="x-window" |
pankso@3080 | 6 SHORT_DESC="Xorg elographics driver." |
pankso@3080 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15579 | 8 LICENSE="MIT" |
pankso@3080 | 9 SOURCE="xf86-input-elographics" |
gokhlayeh@6993 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@20423 | 11 WEB_SITE="https://www.x.org/" |
pankso@3080 | 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pankso@3080 | 13 |
pascal@15162 | 14 DEPENDS="xorg-server" |
pascal@15162 | 15 BUILD_DEPENDS="xorg-server-dev" |
pascal@15162 | 16 |
pankso@3080 | 17 # Rules to configure and make the package. |
pankso@3080 | 18 compile_rules() |
pankso@3080 | 19 { |
pankso@3080 | 20 cd $src |
pankso@3080 | 21 ./configure \ |
pankso@3080 | 22 --prefix=/usr \ |
pankso@3080 | 23 --sysconfdir=/etc \ |
pankso@3080 | 24 --mandir=/usr/share/man \ |
pankso@3080 | 25 --localstatedir=/var \ |
pankso@3080 | 26 --with-xorg-module-dir=/usr/lib/X11/modules \ |
pankso@3080 | 27 $CONFIGURE_ARGS && |
pankso@3080 | 28 make && |
pascal@15161 | 29 make DESTDIR=$DESTDIR install |
pankso@3080 | 30 } |
pankso@3080 | 31 |
pankso@3080 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3080 | 33 genpkg_rules() |
pankso@3080 | 34 { |
pankso@3080 | 35 mkdir -p $fs/usr/lib/X11/modules/input/ |
pascal@15161 | 36 cp -a $install/usr/lib/X11/modules/input/*.so \ |
pankso@3080 | 37 $fs/usr/lib/X11/modules/input/ |
pankso@3080 | 38 } |
pankso@3080 | 39 |