mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
alien (8.95.2) experimental; urgency=medium
.
* QA upload.
* debian/control:
+ Bump debhelper compat to v13.
+ Included Rules-Requires-Root: no
* debian/changelog:
+ Removed trailing-whitespaces.
* alien.pl:
+ Fixed some misspelled words.
* Alien/Package.pm:
+ Fixed misspelled word.
* Alien/Package/Rpm.pm:
+ Fixed misspeled word.
* debian/rules:
+ Added a "nocheck" check on override_dh_auto_test.
18 lines
356 B
Makefile
Executable File
18 lines
356 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_test:
|
|
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
|
./alien.pl -V
|
|
endif
|
|
|
|
|
|
override_dh_auto_clean:
|
|
# distclean moans about MANIFEST, this is quieter
|
|
if [ -e Makefile ]; then $(MAKE) realclean; fi
|
|
|
|
# Not intended for use by anyone except the author.
|
|
announcedir:
|
|
@echo ${HOME}/src/joeywiki/code/alien/news
|