Skip to content

Instantly share code, notes, and snippets.

@kwilczynski
Created September 4, 2011 22:08
Show Gist options
  • Save kwilczynski/1193599 to your computer and use it in GitHub Desktop.
Save kwilczynski/1193599 to your computer and use it in GitHub Desktop.
kwilczynski@ubuntu:~/Development/Sandbox$ fpm -t deb -s dir -n test-project -a all -v 1.0.0 --iteration 1 ./test
Created /home/kwilczynski/Development/Sandbox/test-project_1.0.0-1_all.deb
kwilczynski@ubuntu:~/Development/Sandbox$ dpkg -c test-project_1.0.0-1_all.deb
drwxr-xr-x root/root 0 2011-08-16 16:34 ./test/
drwxr-xr-x root/root 0 2011-08-16 16:34 ./test/operations/
drwxr-xr-x root/root 0 2011-08-16 10:57 ./test/operations/a/
-rw-r--r-- root/root 0 2011-08-16 10:57 ./test/operations/a/foo
drwxr-xr-x root/root 0 2011-08-16 10:57 ./test/operations/b/
-rw-r--r-- root/root 0 2011-08-16 10:57 ./test/operations/b/bar
drwxr-xr-x root/root 0 2011-08-12 10:24 ./test/operations/c/
-rw-r--r-- root/root 29 2011-08-12 10:24 ./test/operations/c/date.txt
kwilczynski@ubuntu:~/Development/Sandbox$ fpm -t deb -s dir -n test-project -a all -v 1.0.0 --iteration 1 -C ${PWD}/test .
Created /home/kwilczynski/Development/Sandbox/test-project_1.0.0-1_all.deb
kwilczynski@ubuntu:~/Development/Sandbox$ dpkg -c test-project_1.0.0-1_all.deb
drwxr-xr-x root/root 0 2011-08-16 16:34 ./
drwxr-xr-x root/root 0 2011-08-16 16:34 ./operations/
drwxr-xr-x root/root 0 2011-08-16 10:57 ./operations/a/
-rw-r--r-- root/root 0 2011-08-16 10:57 ./operations/a/foo
drwxr-xr-x root/root 0 2011-08-16 10:57 ./operations/b/
-rw-r--r-- root/root 0 2011-08-16 10:57 ./operations/b/bar
drwxr-xr-x root/root 0 2011-08-12 10:24 ./operations/c/
-rw-r--r-- root/root 29 2011-08-12 10:24 ./operations/c/date.txt
kwilczynski@ubuntu:~/Development/Sandbox$ fpm -t deb -s dir -n test-project -a all -v 1.0.0 --iteration 1 -C ${PWD}/test --prefix=/opt/test .
Created /home/kwilczynski/Development/Sandbox/test-project_1.0.0-1_all.deb
kwilczynski@ubuntu:~/Development/Sandbox$ dpkg -c test-project_1.0.0-1_all.deb
drwxr-xr-x root/root 0 2011-09-04 18:36 ./
drwxr-xr-x root/root 0 2011-09-04 18:36 ./opt/
drwxr-xr-x root/root 0 2011-08-16 16:34 ./opt/test/
drwxr-xr-x root/root 0 2011-08-16 16:34 ./opt/test/operations/
drwxr-xr-x root/root 0 2011-08-16 10:57 ./opt/test/operations/a/
-rw-r--r-- root/root 0 2011-08-16 10:57 ./opt/test/operations/a/foo
drwxr-xr-x root/root 0 2011-08-16 10:57 ./opt/test/operations/b/
-rw-r--r-- root/root 0 2011-08-16 10:57 ./opt/test/operations/b/bar
drwxr-xr-x root/root 0 2011-08-12 10:24 ./opt/test/operations/c/
-rw-r--r-- root/root 29 2011-08-12 10:24 ./opt/test/operations/c/date.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment