[Mopslinux-main] Требуется пересобрать libgpod
Brought to you by:
mopslinux
|
From: <mop...@li...> - 2010-04-03 04:55:01
|
#----------------------------- General vars --------------------------------------
#------------------------- ÐÑновнÑе пеÑеменнÑе -----------------------------------
pkgname=libgpod
pkgver=0.7.2
pkgbuild=1
arch=('auto')
shortdesc="libgpod is a shared library to access the contents of an iPod"
#-ruler---|--------------------------------------------------------------------------|
longdesc=("libgpod for accessing iPod content. It provides an easy to use way"
"to retrieve the list of files and playlist stored on an iPod, to modify them"
"and to save them back to the iPod. If you decide to make improvements"
"please contact us so we can work together."
)
source=("http://downloads.sourceforge.net/sourceforge/gtkpod/${pkgname}-${pkgver}.tar.gz")
patch_opts=("")
#----------------------------- MOPS vars --------------------------------------
#--------------------- СпеÑиÑиÑнÑе Ð´Ð»Ñ MOPSLinux ------------------------------
tags="libs media-libs"
build_deps=""
provides=""
conflicts=""
adddep=""
removedep=""
author=FreeArcher
ema...@pr...
#numjobs=1 #Set number of jobs while compliling, otherwise it'll be autodetected
#----------------------------- Make PKG --------------------------------------
#-------------------------- СбоÑка пакеÑа ------------------------------------
before_build()
{
echo ""
}
build()
{
cd $startdir/src/$pkgname-$pkgver
burn_patches
LDFLAGS="$SLKLDFLAGS" \
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--disable-static \
--mandir=/usr/man \
--program-prefix= \
--program-suffix=
make -j${numjobs} || exit 1
make install DESTDIR=$startdir/pkg || exit 1
}
after_build()
{
echo ""
} |