Skip to content

Instantly share code, notes, and snippets.

@dragolabs
Created July 2, 2014 15:24
Show Gist options
  • Save dragolabs/73af4579bfbe97630f23 to your computer and use it in GitHub Desktop.
Save dragolabs/73af4579bfbe97630f23 to your computer and use it in GitHub Desktop.
Example for packaging pecl extension with fpm
fpm --force \
-s dir \
-t deb \
--vendor dragolabs \
--maintainer 'Vitaly Shishlyannikov <[email protected]>' \
--deb-user root \
--deb-group root \
--url http://dragolabs.org \
--version $VERSION \
--iteration ddr`date +%y%m%d%H%M` \
-C install_dir \
--description 'Pecl http module for php5' \
--config-files /etc/php5/conf.d/http.ini \
--depends php5-cli \
--depends php5-common \
--name php5-http \
--package php5-http-VERSION-ARCH.deb \
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment