https://github.com/robloach/composer.deb
Build a Debian package to install and use Composer.
https://github.com/robloach/composer.deb
Last synced: 3 months ago
JSON representation
Build a Debian package to install and use Composer.
- Host: GitHub
- URL: https://github.com/robloach/composer.deb
- Owner: RobLoach
- License: mit
- Created: 2013-09-18T08:08:18.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2016-06-25T18:56:06.000Z (almost 10 years ago)
- Last Synced: 2025-03-30T18:01:59.377Z (about 1 year ago)
- Language: Makefile
- Homepage: http://getcomposer.org
- Size: 212 KB
- Stars: 10
- Watchers: 4
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Composer Debian Package
=======================
Builds a [Debian](http://debian.org) package to install and run [Composer](http://getcomposer.org).
Usage
-----
The first thing you must do is assemble Composer:
``` bash
$ make composer
```
Now that Composer is available, we can build the package:
``` bash
$ make package
```
This will create our Debian package, which we can now interact with:
``` bash
$ ln *.deb
composer_1.0.0-alpha11_all.deb
$ sudo dpkg --install composer_1.0.0-alpha11_all.deb
```
If you want to use a different version of Composer you can override the `COMPOSER_VERSION` variable:
``` bash
$ COMPOSER_VERSION=1.0.0-alpha9 make composer
$ COMPOSER_VERSION=1.0.0-alpha9 make package
```
Development
-----------
When changing the default target Composer version, make sure to update:
* Makefile
About
-----
* Author: [Rob Loach](http://robloach.net)
* Source: [composer.deb](http://github.com/RobLoach/composer.deb)