updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / desire-data / desire-data.install
blob045f2973b640829d53a1369148567b298164979f
1 # This is a default template for a post-install scriptlet.  You can
2 # remove any functions you don't need (and this header).
4 # arg 1:  the new package version
5 pre_install() {
6   /bin/true
9 # arg 1:  the new package version
10 post_install() {
11 rm /opt/desire-data/pd/src/pd
12 g++ -Wl,-export-dynamic -ldl -lm -lpthread -lasound  -lasound -lrt -ljack -lfftw3f  /opt/desire-data/pd/src/libpd.so /opt/desire-data/pd/src/main.c -o /opt/desire-data/pd/src/pd
13   /bin/true
16 # arg 1:  the new package version
17 # arg 2:  the old package version
18 pre_upgrade() {
19   /bin/true
22 # arg 1:  the new package version
23 # arg 2:  the old package version
24 post_upgrade() {
25 rm /opt/desire-data/pd/src/pd
26 g++ -Wl,-export-dynamic -ldl -lm -lpthread -lasound  -lasound -lrt -ljack -lfftw3f  /opt/desire-data/pd/src/libpd.so /opt/desire-data/pd/src/main.c -o /opt/desire-data/pd/src/pd
27   /bin/true
30 # arg 1:  the old package version
31 pre_remove() {
32   /bin/true
35 # arg 1:  the old package version
36 post_remove() {
37   /bin/true
40 op=$1
41 shift
42 [ "$(type -t "$op")" = "function" ] && $op "$@"
44 # vim:set ts=2 sw=2 et: