Changeset 347
- Timestamp:
- Mar 14, 2007 3:50:24 PM (6 years ago)
- Location:
- trunk/tweak/src/tweak
- Files:
-
- 2 added
- 1 deleted
- 6 edited
-
Makefile (modified) (1 diff)
-
debian/changelog (modified) (1 diff)
-
debian/control (modified) (3 diffs)
-
debian/copyright (modified) (1 diff)
-
debian/dirs (deleted)
-
debian/menu (modified) (1 diff)
-
debian/rules (modified) (5 diffs)
-
debian/tweak-wrapper (added)
-
debian/tweak.docs (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tweak/src/tweak/Makefile
r333 r347 23 23 LIBS := 24 24 25 PREFIX= $(DESTDIR)/usr25 PREFIX=/usr/local 26 26 BINDIR=$(PREFIX)/bin 27 MANDIR=$(PREFIX)/ share/man/man127 MANDIR=$(PREFIX)/man/man1 28 28 29 29 TWEAK := main.o keytab.o actions.o search.o rcfile.o buffer.o btree.o -
trunk/tweak/src/tweak/debian/changelog
r346 r347 1 tweak (3.01-2) unstable; urgency=low 2 3 * removed debian/dirs 4 * cleaned up debian/rules and added proper copyright/license 5 * debian/control: added rafael to uploaders, dropped ${misc:Depends}, 6 properly formatted URL and added another short paragraph. 7 * fixed up menu entry with tweak-wrapper 8 * added btree.html to docs 9 * thanks, Rafael Laboissiere! 10 11 -- Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net> Wed, 14 Mar 2007 15:50:31 -0400 12 1 13 tweak (3.01-1) unstable; urgency=low 2 14 -
trunk/tweak/src/tweak/debian/control
r346 r347 3 3 Priority: extra 4 4 Maintainer: Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net> 5 Uploaders: Rafael Laboissiere <rafael@debian.org> 5 6 Build-Depends: debhelper (>= 5), halibut, libncurses5-dev 6 7 Standards-Version: 3.7.2.2 … … 8 9 Package: tweak 9 10 Architecture: any 10 Depends: ${shlibs:Depends} , ${misc:Depends}11 Depends: ${shlibs:Depends} 11 12 Description: an efficient hex editor 12 13 Tweak is a hex editor. It allows you to edit a file at very low … … 16 17 generate binary file formats incorrectly, and many other things. 17 18 . 18 It is written by Simon Tatham, who publishes it at 19 http://www.chiark.greenend.org.uk/~sgtatham/tweak/ 19 Tweak runs under any terminal emulator using the curses library. It 20 has customizable keybindings, but the default keybindings are similar 21 to emacs. 22 . 23 Homepage: http://www.chiark.greenend.org.uk/~sgtatham/tweak/ -
trunk/tweak/src/tweak/debian/copyright
r346 r347 8 8 Copyright: 1994-2007 Simon Tatham 9 9 10 License: 10 License: tweak is distributed with an MIT-style license: 11 11 12 12 Permission is hereby granted, free of charge, to any person -
trunk/tweak/src/tweak/debian/menu
r346 r347 1 1 ?package(tweak):needs="text" hints="Expert" section="Apps/Technical"\ 2 title="tweak" command="/usr/bin/tweak "2 title="tweak" command="/usr/bin/tweak-wrapper" -
trunk/tweak/src/tweak/debian/rules
r346 r347 1 1 #!/usr/bin/make -f 2 2 # -*- makefile -*- 3 # Sample debian/rules that uses debhelper. 4 # This file was originally written by Joey Hess and Craig Small. 5 # As a special exception, when this file is copied by dh-make into a 6 # dh-make output file, you may use that output file without restriction. 7 # This special exception was added by Craig Small in version 0.37 of dh-make. 3 # tweak makefile for debian packaging (initially generated by dh-make) 4 # 5 # (C) 2007 by Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net> 6 # 7 # This file is released under the GPL, v2 or later 8 # (see /usr/share/common-licenses/GPL) 8 9 9 10 # Uncomment this to turn on verbose mode. 10 11 #export DH_VERBOSE=1 11 12 13 14 12 15 13 CFLAGS = -Wall -g … … 31 29 build-stamp: configure-stamp 32 30 dh_testdir 33 34 # Add here commands to compile the package.35 31 $(MAKE) 36 #docbook-to-man debian/tweak.sgml > tweak.137 38 32 touch $@ 39 33 … … 42 36 dh_testroot 43 37 rm -f build-stamp configure-stamp 44 45 # Add here commands to clean up after the build process.46 38 -$(MAKE) clean 47 48 39 dh_clean 49 40 … … 54 45 dh_installdirs 55 46 56 # Add here commands to install the package into debian/tweak. 57 $(MAKE) DESTDIR=$(CURDIR)/debian/tweak install 58 47 $(MAKE) DESTDIR=$(CURDIR)/debian/tweak PREFIX=$(CURDIR)/debian/tweak/usr MANDIR=$(CURDIR)/debian/tweak/usr/share/man/man1 install 48 install -m 0755 debian/tweak-wrapper $(CURDIR)/debian/tweak/usr/bin/tweak-wrapper 59 49 60 50 # Build architecture-independent files here. … … 69 59 dh_installdocs 70 60 dh_installexamples 71 # dh_install 72 # dh_installmenu 73 # dh_installdebconf 74 # dh_installlogrotate 75 # dh_installemacsen 76 # dh_installpam 77 # dh_installmime 78 # dh_python 79 # dh_installinit 80 # dh_installcron 81 # dh_installinfo 61 dh_installmenu 82 62 dh_installman 83 63 dh_link
Note: See TracChangeset
for help on using the changeset viewer.

