Moved debian-specific files to ./deb, minor fixes to Makefile

This commit is contained in:
Solomon Hykes
2013-03-13 21:22:30 -07:00
parent 78ef1ba32f
commit 0b5e223b4e
12 changed files with 16 additions and 1 deletions
+1
View File
@@ -3,3 +3,4 @@ docker/docker
.*.swp
a.out
*.orig
build_src
+3 -1
View File
@@ -43,7 +43,9 @@ $(SOURCE_PACKAGE): $(BUILD_SRC)
tar -f $(SOURCE_PACKAGE) -C ${ROOT_PATH}/${BUILD_SRC} -cz .
# Build deb package fetching go dependencies and cleaning up git repositories
deb: $(SOURCE_PACKAGE)
deb: $(DEB_PACKAGE)
$(DEB_PACKAGE): $(SOURCE_PACKAGE)
# dpkg-buildpackage looks for source package tarball in ../
cd $(BUILD_SRC); dpkg-buildpackage
rm -rf $(BUILD_PATH) debian/$(PKG_NAME)* debian/files
+1
View File
@@ -0,0 +1 @@
../Makefile
+1
View File
@@ -0,0 +1 @@
../README.md
View File
View File
View File
+10
View File
@@ -0,0 +1,10 @@
description "Run docker"
start on runlevel [2345]
stop on starting rc RUNLEVEL=[016]
respawn
script
test -f /etc/default/locale && . /etc/default/locale || true
LANG=$LANG LC_ALL=$LANG /usr/bin/docker -d
end script