mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-19 02:00:06 +02:00
* this fixes the wrong recipe names introduced by myself in #d525fee * adjust patch names to match corresponding recipes * additionally: create 'additional-files' folders as hint to some ports that do not have a proper recipe yet
23 lines
519 B
Plaintext
23 lines
519 B
Plaintext
DESCRIPTION="Small library to access XDG Base Directories Specification paths"
|
|
HOMEPAGE="http://standards.freedesktop.org/basedir-spec/"
|
|
SRC_URI="http://n.ethz.ch/student/nevillm/download/libxdg-basedir/libxdg-basedir-1.1.1.tar.gz"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
CHECKSUM_MD5="7c64a28b08c8fdf6c8a95b0d5f1497b0"
|
|
BUILD()
|
|
{
|
|
cd libxdg-basedir-1.1.1
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd libxdg-basedir-1.1.1
|
|
make install
|
|
}
|
|
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2007 Mark Nevill"
|