File: rules

package info (click to toggle)
gtk2-engines-aurora 1.5.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 2,120 kB
  • ctags: 536
  • sloc: sh: 8,854; ansic: 5,305; xml: 1,031; makefile: 35
file content (27 lines) | stat: -rwxr-xr-x 914 bytes parent folder | download
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
#!/usr/bin/make -f
# -*- makefile -*-

UPSTREAM_TARBALL = http://www.gnome-look.org/CONTENT/content-files/56438-aurora-1.5.1.tar.bz2
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed -Wl,-z,defs

# original source is a tarball with two tarballs inside. unpack.
get-orig-source:
	wget -O- $(UPSTREAM_TARBALL) | tar -xj
	mv aurora-gtk-engine-1.5.tar.gz gtk2-engines-aurora_1.5.1.orig.tar.gz
	mv Aurora.tar.bz2 gtk2-engines-aurora_1.5.1.orig-Aurora.tar.bz2

# workaround for rpath issue by patching libtool after configure
override_dh_auto_configure:
	dh_auto_configure -- --enable-animation
	sed -i -e 's/hardcode_into_libs=yes/hardcode_into_libs=no/g' libtool

# delete backup files left in tarball after extracting the Aurora theme, as
# well as libtool files
override_dh_auto_install:
	dh_auto_install
	find debian/gtk2-engines-aurora -name '*.la' -delete

%:
	dh $@ --with=autotools_dev

.PHONY: get-orig-source