mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 03:42:37 +01:00
43 lines
958 B
Plaintext
43 lines
958 B
Plaintext
# Contributor:
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xfce4-notes-plugin
|
|
pkgver=1.7.7
|
|
pkgrel=5
|
|
pkgdesc="Notes plugin for the Xfce4 desktop"
|
|
url="http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=
|
|
makedepends="xfce4-panel-dev libunique-dev libxfcegui4-dev"
|
|
install=
|
|
subpackages="$pkgname-lang"
|
|
source="http://archive.xfce.org/src/panel-plugins/xfce4-notes-plugin/1.7/xfce4-notes-plugin-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
# apply patches here
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
find "$pkgdir" -name '*.la' -delete
|
|
}
|
|
|
|
md5sums="42b924b23f2fec6a1099e9b7a87db4a3 xfce4-notes-plugin-1.7.7.tar.bz2"
|