blob: 0b11ff46c619ac1403cb0e1ee0abeaef60b05671 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# Maintainer (AUR): Jan Dolinar <dolik.rce@gmail.com>
pkgbase=upp
pkgname=(upp theide umk)
pkgver=2018.1
_revision=11873
pkgrel=1
pkgdesc="Radical and innovative multiplatform C++ framework (known as U++)"
arch=('i686' 'x86_64')
url="http://www.ultimatepp.org"
license=('BSD')
groups=()
depends=('gtk2' 'libnotify' 'libpng' 'gcc-libs' 'libxft' 'desktop-file-utils')
makedepends=()
optdepends=('libnotify: Enables compiling gtk-styled apps' 'sox: Enables playing notification sounds')
replaces=()
backup=()
options=(!makeflags emptydirs !strip)
source=("http://downloads.sourceforge.net/project/upp/upp/$pkgver/upp-x11-src-$_revision.tar.gz"
'GCC.bm'
'license.txt'
'https://raw.githubusercontent.com/ultimatepp/mirror/master/uppbox/lpbuild2/theide.1'
'https://raw.githubusercontent.com/ultimatepp/mirror/master/uppbox/lpbuild2/umk.1'
'https://raw.githubusercontent.com/ultimatepp/mirror/master/uppbox/lpbuild2/mkfile')
noextract=()
sha256sums=('0231b768830db96257ebf7a9cc1aaff05017aa40a2ea6dfa577de7232c1cd07b'
'5c0955ef99bc08d4c79b96a470bc17eb2ae3bed5f0d66d86eff7fb726629ae79'
'880ad22b3a7cef8adc2750553e5b7b785ec926168f50e01bacddcae52c07e71a'
'cdb98e08996a809c9a323f83768edde6a22a6aad73d9ed6a193f70ac78a8b123'
'ce881f93471bcb65a7cc4cb4d539579fda67c783b810289ab45a02113146f645'
'45be7a52fb5db25c09b3851c708f2d21022240667e3d2cf39b4f614c9ad01078')
# uncomment this to true to build theide with simpler GUI (with no GTK dependecies)
#USE_NOGTK=false
build() {
cd "$srcdir/upp-x11-src-$_revision"
FLAGS="GCC GUI MT STACKTRACE"
USE_NOGTK="${USE_NOGTK:-false}"
if [ "$USE_NOGTK" == "true" ]; then
SUFFIX="-nogtk"
FLAGS="$FLAGS NOGTK"
fi
# set the version string
echo "#define IDE_VERSION \"$pkgver-Parabola-$CARCH-$SUFFIX\"" > "uppsrc/ide/version.h"
# build
msg2 "Building umk..."
make -f "$srcdir/mkfile" PKG=umk FLAGS="GCC STACKTRACE" NESTS="uppsrc" TIME= COLOR=0 USEMAINCFG=0 JOBS=5 ECHO=0 TARGET="$srcdir/umk"
msg2 "Building theide..."
make -f "$srcdir/mkfile" PKG=ide FLAGS="$FLAGS" NESTS="uppsrc" TIME= COLOR=0 USEMAINCFG=0 JOBS=5 ECHO=0 TARGET="$srcdir/theide"
}
package_theide(){
# theide specific settings
pkgdesc="Modern IDE designed for developping large U++/C++ applications"
if [ "$USE_NOGTK" = true ]; then
depends=('libpng' 'gcc-libs' 'libxft' 'libxinerama' 'desktop-file-utils')
optdepends=('sox: Enables notification sounds')
else
depends=('gtk2' 'libnotify' 'desktop-file-utils')
optdepends=('sox: Enables notification sounds')
fi
options=(!makeflags emptydirs)
# license
install -D "$srcdir/license.txt" "$pkgdir/usr/share/licenses/$pkgname/license.txt"
# man pages
install -D "$srcdir/theide.1" "$pkgdir/usr/share/man/man1/theide.1"
install -D "$srcdir/umk.1" "$pkgdir/usr/share/man/man1/umk.1"
# desktop entry
install -D "$srcdir/upp-x11-src-$_revision/uppsrc/ide/theide.desktop" "$pkgdir/usr/share/applications/theide.desktop"
# icon
install -D "$srcdir/upp-x11-src-$_revision/uppsrc/ide/theide-48.png" "$pkgdir/usr/share/pixmaps/theide.png"
# fix permissions
find "$pkgdir/usr/" -print0 | xargs -0 chown root:root
find "$pkgdir/usr/" -type f -print0 | xargs -0 chmod 644
find "$pkgdir/usr/" -type d -print0 | xargs -0 chmod 755
# install applications
install -D "$srcdir/theide" "$pkgdir/usr/bin/theide"
}
package_umk(){
# theide specific settings
pkgdesc="Command line builder for U++ applications"
depends=('gcc-libs' 'desktop-file-utils')
options=(!makeflags emptydirs)
# license
install -D "$srcdir/license.txt" "$pkgdir/usr/share/licenses/$pkgname/license.txt"
# man pages
install -D "$srcdir/umk.1" "$pkgdir/usr/share/man/man1/umk.1"
# fix permissions
find "$pkgdir/usr/" -print0 | xargs -0 chown root:root
find "$pkgdir/usr/" -type f -print0 | xargs -0 chmod 644
find "$pkgdir/usr/" -type d -print0 | xargs -0 chmod 755
# install applications
install -D "$srcdir/umk" "$pkgdir/usr/bin/umk"
}
package_upp() {
pkgdesc="Radical and innovative multiplatform C++ framework (known as U++)"
depends=('theide')
optdepends=('libnotify: Enables compiling gtk-styled apps')
options=(emptydirs !strip)
#copy source files
mkdir -p "$pkgdir/usr/share/upp"
msg2 "Moving the source codes..."
cp -r "$srcdir/upp-x11-src-$_revision/"{bazaar,examples,reference,tutorial,uppsrc} "$pkgdir/usr/share/upp/"
echo "#define IDE_VERSION \"$pkgver-Parabola\"" > "$pkgdir/usr/share/upp/uppsrc/ide/version.h"
msg2 "Copying additional files..."
#license
mkdir -p "$pkgdir/usr/share/licenses/upp"
cp "$srcdir/license.txt" "$pkgdir/usr/share/licenses/upp"
#build method
cp "$srcdir/GCC.bm" "$pkgdir/usr/share/upp"
#fix permissions
msg2 "Setting permissions..."
find "$pkgdir/usr/" -print0 | xargs -0 chown root:root
find "$pkgdir/usr/" -type f -print0 | xargs -0 chmod 644
find "$pkgdir/usr/" -type d -print0 | xargs -0 chmod 755
}
|