wok view libev/receipt @ rev 21474

updated mousepad (0.3.0 -> 0.4.1)
author Hans-G?nter Theisgen
date Wed May 01 07:26:05 2019 +0100 (2019-05-01)
parents dd38b4c08c8d
children 248a3f57e01a
line source
1 # SliTaz package receipt.
3 PACKAGE="libev"
4 VERSION="4.25"
5 CATEGORY="system-tools"
6 SHORT_DESC="A full-featured and high-performance event loop."
7 MAINTAINER="mallory@sweetpeople.org"
8 LICENSE="BSD"
9 WEB_SITE="http://software.schmorp.de/pkg/libev.html"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://dist.schmorp.de/libev/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make -j 1 &&
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }