mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
adding untracked directories
This commit is contained in:
parent
7f603155e8
commit
55a4ae9c71
5 changed files with 237 additions and 0 deletions
57
alarm/kde-contour-git/PKGBUILD
Normal file
57
alarm/kde-contour-git/PKGBUILD
Normal file
|
@ -0,0 +1,57 @@
|
|||
plugrel=1
|
||||
noautobuild=1
|
||||
|
||||
# Maintainer: Tobias Hunger <tobias dot hunger at gmx dot de>
|
||||
pkgname=kde-contour-git
|
||||
pkgver=20111218
|
||||
pkgrel=1
|
||||
pkgdesc="Context sensitive user interface for Plasma Active"
|
||||
arch=(i686 x86_64)
|
||||
url="http://community.kde.org/Plasma/Active/Contour"
|
||||
license=('LGPL')
|
||||
groups=()
|
||||
depends=('kde-plasma-mobile-git' 'qt-mobility')
|
||||
makedepends=('cmake' 'git' 'automoc4')
|
||||
optdepends=()
|
||||
provides=()
|
||||
conflicts=()
|
||||
replaces=()
|
||||
backup=()
|
||||
options=()
|
||||
install=
|
||||
changelog=
|
||||
source=()
|
||||
noextract=()
|
||||
md5sums=() #generate with 'makepkg -g'
|
||||
|
||||
_gitroot=git://anongit.kde.org/contour
|
||||
_gitname=contour
|
||||
|
||||
build() {
|
||||
cd "$srcdir"
|
||||
msg "Connecting to GIT server...."
|
||||
|
||||
if [[ -d "$_gitname" ]]; then
|
||||
cd "$_gitname" && git pull origin
|
||||
msg "The local files are updated."
|
||||
else
|
||||
git clone "$_gitroot" "$_gitname"
|
||||
fi
|
||||
|
||||
msg "GIT checkout done or server timeout"
|
||||
|
||||
msg "Starting build..."
|
||||
mkdir "$srcdir/build" > /dev/null 2>&1 || true
|
||||
cd "$srcdir/build"
|
||||
|
||||
cmake "$srcdir/$_gitname" \
|
||||
-DCMAKE_BUILD_TYPE=debugfull \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/build"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
||||
|
47
aur/kactivities-git/PKGBUILD
Normal file
47
aur/kactivities-git/PKGBUILD
Normal file
|
@ -0,0 +1,47 @@
|
|||
plugrel=1
|
||||
noautobuild=1
|
||||
|
||||
pkgname=kactivities-git
|
||||
pkgver=20111216
|
||||
pkgrel=1
|
||||
pkgdesc='API for using and interacting with Activities as a consumer, application adding information to them or as an activity manager.'
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://www.kde.org'
|
||||
license=('LGPL')
|
||||
depends=('kdelibs')
|
||||
makedepends=('cmake' 'git' 'automoc4')
|
||||
#conflicts=('kactivities' 'kdebase-runtime')
|
||||
#provides=('kactivities')
|
||||
|
||||
_gitroot="git://anongit.kde.org/kactivities"
|
||||
_gitname="kactivities"
|
||||
|
||||
build() {
|
||||
cd $srcdir
|
||||
msg "Connecting to the GIT server...."
|
||||
|
||||
if [[ -d $srcdir/$_gitname ]] ; then
|
||||
cd $_gitname
|
||||
git pull origin
|
||||
msg "The local files are updated."
|
||||
else
|
||||
git clone --depth 1 $_gitroot
|
||||
fi
|
||||
|
||||
msg "GIT checkout done"
|
||||
msg "Starting make..."
|
||||
if [[ -d ${srcdir}/build ]]; then
|
||||
msg "Cleaning the previous build directory..."
|
||||
rm -rf ${srcdir}/build
|
||||
fi
|
||||
mkdir $srcdir/build
|
||||
cd $srcdir/build
|
||||
cmake $startdir/src/$_gitname -DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/build
|
||||
make DESTDIR=${pkgdir} install
|
||||
}
|
57
aur/kde-plasma-mobile-git/PKGBUILD
Normal file
57
aur/kde-plasma-mobile-git/PKGBUILD
Normal file
|
@ -0,0 +1,57 @@
|
|||
plugrel=1
|
||||
noautobuild=1
|
||||
|
||||
# Maintainer: Tobias Hunger <tobias dot hunger at gmx dot de>
|
||||
pkgname=kde-plasma-mobile-git
|
||||
pkgver=20111216
|
||||
pkgrel=1
|
||||
pkgdesc="A KDE Plasma shell for touch-screen based devices"
|
||||
arch=(i686 x86_64)
|
||||
url="http://community.kde.org/Plasma/Active"
|
||||
license=('LGPL')
|
||||
groups=()
|
||||
depends=('kdelibs' 'kdebase-workspace' 'kactivities-git')
|
||||
makedepends=('automoc4' 'cmake' 'git' 'libxft')
|
||||
optdepends=()
|
||||
provides=()
|
||||
conflicts=()
|
||||
replaces=()
|
||||
backup=()
|
||||
options=()
|
||||
install=
|
||||
changelog=
|
||||
source=()
|
||||
noextract=()
|
||||
md5sums=() #generate with 'makepkg -g'
|
||||
|
||||
_gitroot=git://anongit.kde.org/plasma-mobile
|
||||
_gitname=plasma-mobile
|
||||
|
||||
build() {
|
||||
cd "$srcdir"
|
||||
msg "Connecting to GIT server...."
|
||||
|
||||
if [[ -d "$_gitname" ]]; then
|
||||
cd "$_gitname" && git pull origin
|
||||
msg "The local files are updated."
|
||||
else
|
||||
git clone --depth 1 "$_gitroot" "$_gitname"
|
||||
fi
|
||||
|
||||
msg "GIT checkout done or server timeout"
|
||||
|
||||
msg "Starting build..."
|
||||
mkdir "$srcdir/build" > /dev/null 2>&1 || true
|
||||
cd "$srcdir/build"
|
||||
|
||||
cmake "$srcdir/$_gitname" \
|
||||
-DCMAKE_BUILD_TYPE=debugfull \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/build"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
||||
|
41
aur/qt-mobility/PKGBUILD
Normal file
41
aur/qt-mobility/PKGBUILD
Normal file
|
@ -0,0 +1,41 @@
|
|||
plugrel=1
|
||||
noautobuild=1
|
||||
|
||||
# Submitter: Perry3D
|
||||
# Maintainer: Maciek <maciekwer at wp dot pl>
|
||||
# Contributor: giniu
|
||||
pkgname=qt-mobility
|
||||
pkgver=1.2.0
|
||||
pkgrel=3
|
||||
pkgdesc="It is a project within Nokia that is creating a new suite of Qt APIs for mobile device functionality. These APIs will enable cross-platform mobile application development."
|
||||
arch=('x86_64' 'i686')
|
||||
url="http://qt.nokia.com"
|
||||
license=('LGPL')
|
||||
depends=('qt>=4.7' 'bluez' 'mesa' 'pulseaudio')
|
||||
makedepends=('perl')
|
||||
optdepends=('networkmanager: Bearer Management'
|
||||
'tracker: Document Gallery'
|
||||
'gstreamer0.10-plugins>=0.10.19: Multimedia mediaservice plugins')
|
||||
source=(http://get.qt.nokia.com/qt/add-ons/$pkgname-opensource-src-$pkgver.tar.gz)
|
||||
md5sums=('ea5db5a8d3dd4709c2926dceda646bd8')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/${pkgname}-opensource-src-${pkgver}"
|
||||
|
||||
./configure -prefix /usr \
|
||||
-plugindir /usr/lib/qt/plugins \
|
||||
-silent
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/${pkgname}-opensource-src-${pkgver}"
|
||||
|
||||
make INSTALL_ROOT="$pkgdir/" install
|
||||
|
||||
install -d ${pkgdir}/usr/share/doc/qt
|
||||
cp -r doc/qch ${pkgdir}/usr/share/doc/qt/
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
35
extra/openal/PKGBUILD
Normal file
35
extra/openal/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
|||
# $Id$
|
||||
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
||||
# Contributor: Allan McRae <allan@archlinux.org>
|
||||
# Contributer: Jason Chu <jchu@xentac.net>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - 1.14 is broken for ARM, staying at 1.13 for now
|
||||
|
||||
plugrel=1
|
||||
noautobuild=1
|
||||
|
||||
pkgname=openal
|
||||
pkgver=1.13
|
||||
pkgrel=3
|
||||
pkgdesc="A cross-platform 3D audio library"
|
||||
arch=(i686 x86_64)
|
||||
url="http://www.openal.org/"
|
||||
license=(LGPL)
|
||||
depends=(glibc)
|
||||
makedepends=(alsa-lib sdl pkgconfig cmake libpulse)
|
||||
options=('!libtool')
|
||||
source=(http://kcat.strangesoft.net/openal-releases/openal-soft-$pkgver.tar.bz2)
|
||||
md5sums=('58b7d2809790c70681b825644c5f3614')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-soft-$pkgver/build"
|
||||
cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release ..
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-soft-$pkgver"
|
||||
make -C build DESTDIR="$pkgdir/" install
|
||||
install -Dm644 alsoftrc.sample "$pkgdir/etc/openal/alsoft.conf.sample"
|
||||
}
|
Loading…
Reference in a new issue