Updated links to homepage

This commit is contained in:
arcan1s
2014-01-12 23:44:23 +04:00
parent b4aa135600
commit 763670a2a1
3 changed files with 13 additions and 16 deletions

View File

@ -7,7 +7,7 @@ pkgver=1.5
pkgrel=2
pkgdesc="Plasmoid that displays a random draw from Brian Eno and Peter Schmidt's Oblique Strategies"
arch=('i686' 'x86_64')
url="https://github.com/arcan1s/oblikuestrategies"
url="http://arcan1s.github.io/projects/oblikuestrategies"
license=('GPL')
depends=('kdebase-workspace')
makedepends=('cmake' 'automoc4')
@ -15,20 +15,19 @@ source=(https://github.com/arcan1s/oblikuestrategies/releases/download/V.${pkgve
install=${pkgname}.install
md5sums=('e813b03a17d96cddc41acdf457e37bbb')
build ()
{
build () {
if [[ -d ${srcdir}/build ]]; then
rm -rf "${srcdir}/build"
fi
mkdir "${srcdir}/build"; cd "${srcdir}/build"
mkdir "${srcdir}/build"
cd "${srcdir}/build"
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` \
../${_pkgname}
make
}
package()
{
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}" install
}