Various compilation scripts & patches for Linux programs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

46 lines
1.3 KiB

pkgname=qgifer-qt5
_pkgname=qgifer
pkgver=0.2.1
pkgrel=1
pkgdesc="A video-based animated GIF creator"
arch=('i686' 'x86_64')
url='https://sourceforge.net/projects/qgifer'
license=('GPL')
depends=('gcc' 'gcc-libs' 'giflib' 'opencv2' 'qt5-base') #giflib4 4.1.6, no 4.2.X!
makedepends=('cmake')
source=("http://netix.dl.sourceforge.net/project/qgifer/QGifer-${pkgver}/$_pkgname-${pkgver}-source.tar.gz"
0001_removeframelimit_addcodecs.patch
giflibport.patch
0001_cmakelinkingfix.patch
qt5_sourcecodepatches.patch)
md5sums=('cacfcd25bb32352ea4fbb526c87efa0f'
'6243b22ba569d79f0f90b16d327e26e3'
'331217d8aaf8842f68c2acfba68af056'
'229902522f04929b511de12692f2fb0c'
'39de3e82d26aee83b367eb3871892b30')
prepare() {
mkdir build
mv $_pkgname-$pkgver-source $pkgname-$pkgver
cd $srcdir/$pkgname-$pkgver
patch -Np1 -i "$srcdir/0001_removeframelimit_addcodecs.patch"
patch -Np1 -i "$srcdir/giflibport.patch"
patch -Np1 -i "$srcdir/0001_cmakelinkingfix.patch"
patch -Np1 -i "$srcdir/qt5_sourcecodepatches.patch"
}
build() {
cd build
cmake ../$pkgname-$pkgver \
-DQT_QMAKE_EXECUTABLE=qmake-qt5 \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}