remove old deprecated pkgbuilds

This commit is contained in:
Daniel Wallace 2013-04-08 13:23:28 -04:00
parent d4a4c73d6c
commit a6022ed36e
3 changed files with 0 additions and 155 deletions

View file

@ -1,57 +0,0 @@
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
}

View file

@ -1,57 +0,0 @@
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
}

View file

@ -1,41 +0,0 @@
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: