File: make-ipks.sh

package info (click to toggle)
matchbox-themes-extra 0.3-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,968 kB
  • ctags: 5
  • sloc: sh: 7,904; xml: 304; makefile: 123
file content (133 lines) | stat: -rwxr-xr-x 3,033 bytes parent folder | download | duplicates (4)
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
126
127
128
129
130
131
132
133
#!/bin/sh

rm -fr ipkg-build ipkg-tmp

./configure --prefix=/usr
make clean && make && make DESTDIR=`pwd`/ipkg-tmp install

## matchbox-themes-extra

mkdir -p ipkg-build/usr/share/themes/expose
mkdir -p ipkg-build/usr/share/themes/Industrial
mkdir -p ipkg-build/usr/share/themes/mbcrystal

cp -a ipkg-tmp/usr/share/themes/mbcrystal/matchbox ipkg-build/usr/share/themes/mbcrystal

cp -a ipkg-tmp/usr/share/themes/mbcrystal/background ipkg-build/usr/share/themes/mbcrystal


cp -a ipkg-tmp/usr/share/themes/expose/matchbox ipkg-build/usr/share/themes/expose

cp -a ipkg-tmp/usr/share/themes/expose/background ipkg-build/usr/share/themes/expose

cp -a ipkg-tmp/usr/share/themes/Industrial/matchbox ipkg-build/usr/share/themes/Industrial/

mkdir -p ipkg-build/CONTROL

cat <<STOP  > ./ipkg-build/CONTROL/control
Package: matchbox-themes-extra
Section: x11
Priority: optional
Version: 0.4
Architecture: any
Maintainer: mallum@handhelds.org
Description: 3 Extra Window and desktop decoration themes for matchbox
Source: in package
.
STOP

ipkg-build -o root -g root ./ipkg-build

rm -fr ./ipkg-build/*

## mbcrystal-icons

mkdir -p ipkg-build/usr/share/icons/
cp -a ipkg-tmp/usr/share/icons/mbcrystal ipkg-build/usr/share/icons/

mkdir -p ipkg-build/CONTROL

cat <<STOP  > ./ipkg-build/CONTROL/control
Package: mbcrystal-icon-theme
Section: x11
Priority: optional
Version: 0.2
Architecture: any
Maintainer: mallum@handhelds.org
Description: Icon theme based on KDE crystal icon theme
Source: in package
.
STOP

ipkg-build -o root -g root ./ipkg-build

rm -fr ./ipkg-build/*

## Industrial icons

mkdir -p ipkg-build/usr/share/icons/
cp -a ipkg-tmp/usr/share/icons/Industrial ipkg-build/usr/share/icons/

mkdir -p ipkg-build/CONTROL

cat <<STOP  > ./ipkg-build/CONTROL/control
Package: industrial-icon-theme
Section: x11
Priority: optional
Version: 0.3
Architecture: any
Maintainer: mallum@handhelds.org
Description: Icon theme based on ximian gnome industrial theme
Source: in package
.
STOP

ipkg-build -o root -g root ./ipkg-build

rm -fr ./ipkg-build/*

## Expose icons

mkdir -p ipkg-build/usr/share/icons/
cp -a ipkg-tmp/usr/share/icons/expose ipkg-build/usr/share/icons/

mkdir -p ipkg-build/CONTROL

cat <<STOP  > ./ipkg-build/CONTROL/control
Package: expose-icon-theme
Section: x11
Priority: optional
Version: 0.2
Architecture: any
Maintainer: mallum@handhelds.org
Description: Icon theme based on various panther like themes from the net
Source: in package
.
STOP

ipkg-build -o root -g root ./ipkg-build

rm -fr ./ipkg-build/*

## Expose gtk

mkdir -p ipkg-build/usr/share/themes/expose
cp -a ipkg-tmp/usr/share/themes/expose/gtk-2.0 ipkg-build/usr/share/themes/expose/

mkdir -p ipkg-build/CONTROL

cat <<STOP  > ./ipkg-build/CONTROL/control
Package: expose-gtk2-theme
Section: x11
Priority: optional
Version: 0.2
Architecture: any
Maintainer: mallum@handhelds.org
Description: GTK theme based on various panther like themes from the net
Source: in package
.
STOP

ipkg-build -o root -g root ./ipkg-build

rm -fr ./ipkg-build/*