You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gfxboot-theme-calculate/debian/rules

40 lines
657 B

#! /usr/bin/make -f
tmp := $(CURDIR)/debian/gfxboot-theme-ubuntu
themedir := $(tmp)/usr/share/gfxboot/themes/Ubuntu
build:
clean:
dh_testdir
dh_testroot
$(MAKE) clean
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
install -m644 Makefile languages *.config *.dat *.fnt *.inc *.jpg \
$(themedir)
install -m755 keymapchars $(themedir)
binary-arch:
binary-indep: build install
dh_testdir
dh_testroot
dh_installdocs
dh_installchangelogs
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-arch binary-indep
.PHONY: build clean install binary-arch binary-indep binary