51844b53e5
I also added a patch that removes the intltool dependency from the package.
24 lines
545 B
Plaintext
24 lines
545 B
Plaintext
# Description: core database of common types
|
|
# URL: http://freedesktop.org/Software/shared-mime-info
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: glib,libxml2,p5-xml-parser
|
|
# Group: gnome
|
|
|
|
name=shared-mime-info
|
|
version=0.51
|
|
release=1
|
|
source=(http://freedesktop.org/~hadess/$name-$version.tar.bz2
|
|
$name.diff)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# kill nls support. don't depend on intltool.
|
|
patch -Np1 -i $SRC/$name.diff
|
|
autoreconf
|
|
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
make
|
|
make -j1 DESTDIR=$PKG install
|
|
}
|