rev |
line source |
mallory@2683
|
1 # SliTaz package receipt.
|
mallory@2683
|
2
|
mallory@2683
|
3 PACKAGE="libev-dev"
|
slaxemulator@10206
|
4 VERSION="4.04"
|
mallory@2683
|
5 CATEGORY="development"
|
mallory@2683
|
6 SHORT_DESC="libev development files"
|
mallory@2683
|
7 MAINTAINER="mallory@sweetpeople.org"
|
slaxemulator@10206
|
8 DEPENDS="libev"
|
mallory@2683
|
9 WANTED="libev"
|
mallory@2683
|
10 WEB_SITE="http://software.schmorp.de/pkg/libev.html"
|
mallory@2683
|
11
|
mallory@2683
|
12 # Rules to gen a SliTaz package suitable for Tazpkg.
|
mallory@2683
|
13 genpkg_rules()
|
mallory@2683
|
14 {
|
pascal@5909
|
15 mkdir -p $fs/usr/lib
|
mallory@2683
|
16 cp -a $_pkg/usr/include $fs/usr
|
mallory@2683
|
17 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
|
slaxemulator@6355
|
18 #cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
|
pascal@5909
|
19 # /usr/include/event.h conflicts with libevent-dev
|
pascal@5909
|
20 # https://www.opencsw.org/mantis/view.php?id=4376
|
pascal@5909
|
21 mv $fs/usr/include/event.h $fs/usr/include/ev-event.h
|
mallory@2683
|
22 }
|
mallory@2683
|
23
|