mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 08:12:06 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
38 lines
865 B
Plaintext
38 lines
865 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxdamage
|
|
pkgver=1.1.4
|
|
pkgrel=0
|
|
pkgdesc="X11 damaged region extension library"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="custom"
|
|
depends=
|
|
depends_dev="xproto damageproto libxfixes-dev libx11-dev fixesproto"
|
|
makedepends="libxfixes-dev damageproto xextproto"
|
|
subpackages="$pkgname-dev"
|
|
source="http://xorg.freedesktop.org/releases/individual/lib/libXdamage-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir/libXdamage-$pkgver"
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
update_config_sub || return 1
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/libXdamage-$pkgver
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums="0cf292de2a9fa2e9a939aefde68fd34f libXdamage-1.1.4.tar.bz2"
|