Skip to content

Instantly share code, notes, and snippets.

@badboy
Created August 26, 2009 17:02
Show Gist options
  • Save badboy/175643 to your computer and use it in GitHub Desktop.
Save badboy/175643 to your computer and use it in GitHub Desktop.
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Contributor: Your Name <youremail@domain.com>
pkgname=debian-xtrace
pkgver=1.0.0
pkgrel=1
pkgdesc="what strace is for system calls, xtrace is for X11-connections"
arch=('i686' 'x86_64')
url="http://xtrace.alioth.debian.org/"
license=('GPL')
depends=('glibc')
source=(https://alioth.debian.org/frs/download.php/3095/xtrace_$pkgver.orig.tar.gz)
md5sums=('d6623f9c17583d6622017f135cdabc1c')
build() {
cd "$srcdir/xtrace-$pkgver"
./configure --prefix=/usr --program-prefix=debian-
make || return 1
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment