SoPudge / lede-cups

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Latest Apple CUPS Openwrt make file

Intro

How to compile with complete openwrt firmware

This code will compile a complete openwrt firmware that include CUPS

git clone (your openwrt source)

cd source

echo "src-git cups https://github.com/SoPudge/lede-cups" >> feeds.conf.default

./scripts/feeds update -a

./scripts/feeds install -a

make menuconfig (set Network->Printing->cups as "M",include other cups related packages)

make V=s -j1

How to compile only CUPS packages

This code will compile only CUPS packages, not complete openwrt firmware.

git clone (your openwrt source)

cd source

echo "src-git cups https://github.com/SoPudge/lede-cups" >> feeds.conf.default

./scripts/feeds update -a

./scripts/feeds install -a

make menuconfig (set Network->Printing->cups as "M",include other cups related packages)

make -j8 download V=s

make tools/install V=s -j1

make toolchain/install V=s -j1

make package/feeds/cups/cups/compile V=s -j1

Version of CUPS

2.3.3

About

License:GNU General Public License v2.0


Languages

Language:Makefile 97.7%Language:Shell 2.3%