Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created April 20, 2009 13:34
Show Gist options
  • Select an option

  • Save ELLIOTTCABLE/98537 to your computer and use it in GitHub Desktop.

Select an option

Save ELLIOTTCABLE/98537 to your computer and use it in GitHub Desktop.
# Contributor: Ondrej Martinak <omartinak@gmail.com>
pkgname=libxdg-basedir
pkgver=1.0.0
pkgrel=1
pkgdesc="An implementation of the XDG Base Directory specifications."
arch=('i686' 'x86_64')
url="http://n.ethz.ch/student/nevillm/download/libxdg-basedir"
license=('MIT')
depends=()
source=(http://n.ethz.ch/student/nevillm/download/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('e32bcfa772fb57e8e1acdf9616a8d567')
build() {
cd "${srcdir}/$pkgname-$pkgver"
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment