blob: 42db3f3134e6d70eb669b2c88b78eb6545d43ed1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Contributor: Baytars <feicuihuangfeng@qq.com>
pkgname=ambulant-player-gtk-git
pkgver=2.6
pkgrel=2
pkgdesc="open-source media player with support for SMIL 3.0"
arch=('x86_64')
url="https://www.ambulantplayer.org/"
_git=https://e.coding.net/Baytars/ambulant-2.6.git
license=('LGPL')
depends=('ffmpeg' 'sdl_pango' 'sdl_image' 'sdl2_ttf' 'xerces-c')
makedepends=('make' 'automake' 'git' 'autoconf' 'ed' 'python')
provides=('AmbulantPlayer_gtk')
conflicts=('AmbulantPlayer_gtk')
install=AmbulantPlayer_gtk.install
source=(git+$_git)
sha256sums=('SKIP')
build() {
cd ${srcdir}/ambulant-2.6
echo "Below script has been written in build.sh"
echo "Make sure you have Modified po/Makefile.in. The GETTEXT_MACRO_VERSION variable has to match your current gettext version."
gettext --version
cd ./third_party_packages
python ../scripts/build-third-party-packages.py linux
cd ../
./autogen.sh
./configure
cfgPath=`readlink ./libltdl/config-h.in`
rm ./libltdl/config-h.in
cp $cfgPath ./libltdl/config-h.in
make
}
package() {
cd ${srcdir}/ambulant-2.6
make install DESTDIR=${pkgdir}
}
|