mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
30 lines
983 B
Bash
30 lines
983 B
Bash
|
# $Id: PKGBUILD 41453 2009-06-04 03:48:53Z eric $
|
||
|
# Maintainer: damir <damir@archlinux.org>
|
||
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
||
|
|
||
|
pkgname=xosd
|
||
|
pkgver=2.2.14
|
||
|
pkgrel=3
|
||
|
pkgdesc="XOSD displays text on your screen. On-Screen-Display-libs for some tools."
|
||
|
arch=("i686" "x86_64")
|
||
|
license=('GPL2')
|
||
|
url="http://www.ignavus.net/software.html"
|
||
|
depends=('libxt' 'libxinerama')
|
||
|
makedepends=('xmms' 'bmp' 'gdk-pixbuf')
|
||
|
optdepends=('gdk-pixbuf: for using the bmp or xmms plugin')
|
||
|
options=(!libtool)
|
||
|
#source=("http://www.ignavus.net/xosd-$pkgver.tar.bz2")
|
||
|
source=("http://ftp.de.debian.org/debian/pool/main/x/xosd/xosd_$pkgver.orig.tar.gz")
|
||
|
md5sums=('4b349fe930e4eee2f504d6c02673e24d')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/xosd-$pkgver"
|
||
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
sed -i 's/AC_DEFUN(AM_PATH_LIBXOSD,/AC_DEFUN([AM_PATH_LIBXOSD],/' \
|
||
|
"$pkgdir/usr/share/aclocal/libxosd.m4" || return 1
|
||
|
}
|
||
|
|
||
|
|