mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-10 19:22:10 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=clutter
|
|
pkgver=1.22.2
|
|
pkgrel=0
|
|
pkgdesc="library for creating fast, visually-appealing interfaces"
|
|
url="http://www.clutter-project.org/"
|
|
arch="all"
|
|
license="LGPL"
|
|
depends=
|
|
depends_dev="gdk-pixbuf-dev json-glib-dev atk-dev pango-dev mesa-dev
|
|
libxcomposite-dev cairo-dev cogl-dev"
|
|
makedepends="$depends_dev gobject-introspection-dev intltool"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
|
|
source="ftp://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"
|
|
|
|
_builddir="${srcdir}/${pkgname}-${pkgver}"
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="48398ac43d45916eec03abc7a6e4f2ec clutter-1.22.2.tar.xz"
|
|
sha256sums="8e69d21d9f7e8e89eafc072e2615c289903260c470af39bcb578b081139c11ac clutter-1.22.2.tar.xz"
|
|
sha512sums="002ea924f97fca89cec96a9e5850f0351cd44b960eede898fa59ef3c0c1c08f9798b34747a9590b2c59108d0ae7cbcd5c67e96a61c4e9bab1f9f6075c863e21f clutter-1.22.2.tar.xz"
|